.home-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00ffe1; /* Matches the particle theme */
    text-align: center;
}

.home-title {
    font-size: clamp(2rem, 5vw, 4rem); /* Dynamically adjust font size */
    text-shadow: 2px 2px 10px #000000, 0 0 10px #00ffe1;
    height: 80px;
    width: 1000px;
    white-space: nowrap; /* Prevent wrapping */
    overflow: hidden; /* Ensure no overflow issues */
}

.home-description {
    font-size: 2rem;
    font-weight: lighter;
    text-shadow: 1px 1px 5px #000000, 0 0 10px #00ffe1;
    border-right: 2px solid #00ffe1; /* Creates the blinking cursor */
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

/* Cursor blink animation */
@keyframes blink-caret {
    50% {
        border-color: transparent; /* Hide the cursor */
    }
}

/* Apply the blinking effect to the cursor */
.home-description.typing {
    animation: blink-caret 0.7s step-end infinite; /* Make the cursor blink */
}

@media (max-width: 800px) {
    .home-title {
        font-size: 2.5rem;
    }

    .home-description {
        font-size: 1.25rem;
    }

    .home-content {
        padding: 1.5rem;
    }
}
